home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGMISC / FPCHELP.LZH / WORDS.HLP < prev   
Text File  |  1988-02-29  |  2KB  |  38 lines

  1. \ WORDS.HLP     The WORDS definition       Enhancements by Tom Zimmer
  2.  
  3. VYET   \ DID WE PRINT VOCABULARY YET
  4. VADDR  \ VOCABULARY NAME ADDRESS
  5.  
  6. .VYET           ( --- )
  7.         Print the name of the vocabulary if we have not printed it yet.
  8.  
  9. INWFLG          Display a subset of words matching flag.
  10. ALLFLAG         Display all words flag.
  11. CODEWRDS        Display only CODE words flag.
  12. TOTALWORDS      Accumulator for the total number of names.
  13.  
  14. W.NAME          ( NFA --- )
  15.         Print name of word NFA. Test to see if conditions are correct,
  16.         like CODE, or ALL, or WITHIN, and print name.
  17.  
  18. .VOCWORDS       ( A1 --- )
  19.         Display the words matching, from a vocabulary.
  20.  
  21. WORDS           ( | <text> -- )
  22.         Display words that match text. <text> is optional, if ommited
  23.         then the CONTEXT vocabulary will be displayed.
  24.  
  25.         Several specific values for <text> can be included on the
  26.         command line, as follows:
  27.  
  28.         WORDS *.*               display all words of all vocs.
  29.         WORDS CODE.*            display all CODE words.
  30.         WORDS :.*               display all : definitions.
  31.         WORDS CONSTANT.*        display all constants.
  32.         WORDS VARIABLE.*        display all variables.
  33.         WORDS UVARIABLE.*       display all user variables.
  34.         WORDS DEFER.*           display all defered words.
  35.         WORDS UDEFER.*          display all user defered words.
  36.         WORDS TOTAL.*           display the total count of words only.
  37.  
  38.